home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / LIBIP / CONVOLVE.H < prev    next >
C/C++ Source or Header  |  1999-09-11  |  278b  |  19 lines

  1. /* 
  2.  * convolve.h
  3.  * 
  4.  * Practical Algorithms for Image Analysis
  5.  * 
  6.  * Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
  7.  */
  8.  
  9. #ifndef _CONVOLVE_H_
  10. #define    _CONVOLVE_H_
  11.  
  12. typedef struct Matrix {
  13.   float **matrix;
  14.   int nRows;
  15.   int nCols;
  16. } Matrix;
  17.  
  18. #endif /* _CONVOLVE_H_ */
  19.